home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / asywiz / ocreate.bat < prev    next >
Encoding:
DOS Batch File  |  1994-11-03  |  437 b   |  13 lines

  1. @echo off
  2. echo off
  3. echo   This batch file will assemble and link the EXAMPLE.ASM file using
  4. echo   OPTASM and LINK.  If you are using a different assembler and/or linker,
  5. echo   this batch file must be changed to reflect the names of your assembler
  6. echo   and linker.
  7. echo   --------------------------------------------------------------------
  8. pause
  9. optasm example;
  10. link example,,nul,asmwiz;
  11. erase example.obj
  12. execom example
  13.